home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 045a / tpapi1.zip / NWMISC.PA1 < prev    next >
Text File  |  1991-12-04  |  3KB  |  65 lines

  1. {!R! FONT 15; FTMD 15; EXIT;}
  2.  
  3.  
  4. {***************************************************************************}
  5. {** Program : NWMISC                                                      **}
  6. {***************************************************************************}
  7. {** Version : 1.0b            ** Started : 11/11/91  ** ENDed :   /  /    **}
  8. {***************************************************************************}
  9. {******************************** Description ******************************}
  10. {***************************************************************************}
  11. {** OOP library for Netware API                                           **}
  12. {**                                                                       **}
  13. {** This unit forms the second level object : NWMISC                      **}
  14. {** This object is a descandent of          : NETWARE                     **}
  15. {**                                                                       **}
  16. {**                                                                       **}
  17. {**                                                                       **}
  18. {**                                                                       **}
  19. {***************************************************************************}
  20. {******************************** Information ******************************}
  21. {***************************************************************************}
  22. {**                                                                       **}
  23. {**                                                                       **}
  24. {**                                                                       **}
  25. {**                                                                       **}
  26. {** This code is (c) 1991 Tony Covelli,                                   **}
  27. {** Portions (c) Novell Inc,                                              **}
  28. {**                                                                       **}
  29. {**                                                                       **}
  30. {***************************************************************************}
  31.  
  32. {$I NETWARE.INC}
  33.  
  34. UNIT NWMISC;
  35.  
  36. INTERFACE
  37.  
  38. USES
  39.  
  40.   netware, nwvar;
  41.  
  42. TYPE
  43.  
  44.   pMiscFuncOBJ = ^MiscFuncOBJ;
  45.   MiscFuncOBJ  = object (NetwareOBJ)
  46.  
  47.     constructor Init;
  48.     PROCEDURE   GetAllShellTables;
  49.     PROCEDURE   LogoutAndDetachFromFileServer (ServerName : ObjectNameType; ConnectionID : WORD);
  50.     FUNCTION    NetWareLoaded                 (VAR LoggedIn : BOOLEAN) : BOOLEAN;
  51.     FUNCTION    GetDefaultFileServerName : ObjectNameType;
  52.     FUNCTION    GetObjectName                 (ServerName : ObjectNameType; VAR ObjectName : ObjectNameType;
  53.                                                VAR ObjectType : OT_BinderyType) : WORD;
  54.     FUNCTION    GetObjectFullName             (ServerName : ObjectNameType; VAR ObjectFullName : FullNameType;
  55.                                                VAR ObjectType : OT_BinderyType) : WORD;
  56.     FUNCTION    GetStationNumber              (ServerName : ObjectNameType) : WORD;
  57.     FUNCTION    DeleteDriveMapping            (Drive : CHAR) : WORD;
  58.     FUNCTION    UserMemberOfGroup             (ObjectName, MemberName : ObjectNameType) : WORD;
  59.     FUNCTION    FileServerExists              (ServerName : ObjectNameType) : BOOLEAN;
  60.     FUNCTION    ExpandNetwareFileTime         (TimeInfo : LONGINT) : STRING;
  61.     destructor  Done; virtual;
  62.  
  63.   END;
  64.  
  65.